8
How do I put a picture on the control's center top side


// Generate Source for 'OLE Automation(stdole2.tlb)' server from Tools\Automation Server... with the PREFIX std
oDCOCX_Exontrol1:Picture := oDCOCX_Exontrol1:ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oDCOCX_Exontrol1:PictureDisplay := UpperCenter
oDCOCX_Exontrol1:Value := 50
oDCOCX_Exontrol1:[VisiblePart,exBackgroundPart] := false
oDCOCX_Exontrol1:BackColor := 0x80000004

7
How do I put a picture on the control's right top corner


// Generate Source for 'OLE Automation(stdole2.tlb)' server from Tools\Automation Server... with the PREFIX std
oDCOCX_Exontrol1:Picture := oDCOCX_Exontrol1:ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oDCOCX_Exontrol1:PictureDisplay := UpperRight
oDCOCX_Exontrol1:[VisiblePart,exBackgroundPart] := false
oDCOCX_Exontrol1:BackColor := 0x80000004
oDCOCX_Exontrol1:Value := 50

6
How do I put a picture on the control's left top corner


// Generate Source for 'OLE Automation(stdole2.tlb)' server from Tools\Automation Server... with the PREFIX std
oDCOCX_Exontrol1:Picture := oDCOCX_Exontrol1:ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oDCOCX_Exontrol1:PictureDisplay := UpperLeft
oDCOCX_Exontrol1:[VisiblePart,exBackgroundPart] := false
oDCOCX_Exontrol1:BackColor := 0x80000004
oDCOCX_Exontrol1:Value := 50

5
How do I put a picture on the control's background


// Generate Source for 'OLE Automation(stdole2.tlb)' server from Tools\Automation Server... with the PREFIX std
oDCOCX_Exontrol1:Picture := oDCOCX_Exontrol1:ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
oDCOCX_Exontrol1:[VisiblePart,exBackgroundPart] := false
oDCOCX_Exontrol1:BackColor := 0x80000004

4
How can I change the size of control's font


oDCOCX_Exontrol1:Font:Size := 12
oDCOCX_Exontrol1:ForeColor := RGB(255,0,0)
oDCOCX_Exontrol1:[Caption,exThumbPart] := "<img>0</img>thumb"

3
How do I change the control's font


oDCOCX_Exontrol1:Font:Name := "Tahoma"
oDCOCX_Exontrol1:ForeColor := RGB(255,0,0)
oDCOCX_Exontrol1:[Caption,exThumbPart] := "<img>0</img>thumb"

2
How can I change the control's foreground color


oDCOCX_Exontrol1:ForeColor := RGB(255,0,0)
oDCOCX_Exontrol1:[Caption,exThumbPart] := "<img>0</img>thumb"

1
How can I change the control's background color


oDCOCX_Exontrol1:BackColor := RGB(0,255,0)
oDCOCX_Exontrol1:[VisiblePart,exBackgroundPart] := false